home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / tour.dxr / 00012_main menu first frame.ls < prev    next >
Encoding:
Text File  |  2000-01-21  |  594 b   |  24 lines

  1. on enterFrame
  2.   global gMenuList, gMenuButton, gMenuExit, gPlaySound, gTourVariables
  3.   gPlaySound = 1
  4.   unLoad()
  5.   set the puppet of sprite 4 to 1
  6.   sprite(4).visible = 1
  7.   set the puppet of sprite 4 to 0
  8.   repeat with X = 30 to 35
  9.     menuObj = getaProp(gMenuList, X)
  10.     Inscope(menuObj)
  11.   end repeat
  12.   Inscope(gMenuButton)
  13.   Inscope(gMenuExit)
  14.   repeat with z = 2 to 10
  15.     if not (the memberNum of sprite z = 0) then
  16.       sprite(z).visible = 1
  17.       updateStage()
  18.     end if
  19.   end repeat
  20.   setHandCursor([30, 31, 32, 33, 34, 35, 40, 41])
  21.   cursor(-1)
  22.   InitTextEntries(gTourVariables)
  23. end
  24.